home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Treccani Italiana Di Scienze Lettere Ed Arti
/
[Enciclopedia] Treccani Italiana di scienze lettere ed arti.iso
/
pc
/
data
/
menu_dvd.swf
/
scripts
/
__Packages
/
mx
/
skins
/
SkinElement.as
Wrap
Text File
|
2007-11-07
|
552b
|
27 lines
class mx.skins.SkinElement extends MovieClip
{
function SkinElement()
{
super();
}
static function registerElement(name, className)
{
Object.registerClass(name,className != undefined ? className : mx.skins.SkinElement);
_global.skinRegistry[name] = true;
}
function __set__visible(visible)
{
this._visible = visible;
}
function move(x, y)
{
this._x = x;
this._y = y;
}
function setSize(w, h)
{
this._width = w;
this._height = h;
}
}